Conditions | 1 |
Total Lines | 5 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
11 | |||
12 | public async down(queryRunner: QueryRunner): Promise<void> { |
||
13 | await queryRunner.query(`ALTER TABLE "user_savings_record" DROP CONSTRAINT "FK_b126b5220c39f0c684fd3929eac"`); |
||
14 | await queryRunner.query(`DROP TABLE "user_savings_record"`); |
||
15 | await queryRunner.query(`DROP TYPE "user_savings_record_type_enum"`); |
||
16 | } |
||
19 |